home *** CD-ROM | disk | FTP | other *** search
- /* Demo script for BlackIRC */
-
- options results
- failat 21
-
- 'ECHO <<OutputRaw>> Welcome!!'
- 'ECHO <<OutputRaw>> This little ARexx-script asks for new lines'
- 'ECHO <<OutputRaw>> as often as possible and outputs them as RAW'
- 'ECHO <<OutputRaw>> lines to the normal lister! Just a small example'
- 'ECHO <<OutputRaw>> to demonstrate, what is possible with BIRC.'
-
- CURLINENUM
- lnnum=result
-
- DO FOREVER
- ollnnum=lnnum
- CURLINENUM
- lnnum=result
-
- if lnnum>ollnnum then do
- GETLASTLINE
- ll=result
- USERECHO ll
- end
- END
-
- EXIT
-